home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / GRAPHICS / RAYTRACING / POVRAY3 / POV301 / povray3 / docsdemo / pov / prismdm1 < prev    next >
Text File  |  1997-01-21  |  385b  |  22 lines

  1. #include "colors.inc"
  2.  
  3. camera {  
  4.   angle 20
  5.   location <2, 10, -30>
  6.   look_at <0, 1, 0>
  7. }
  8.  
  9. light_source { <20, 20, -20> color White }
  10.  
  11. prism { 
  12.   linear_sweep
  13.   linear_spline
  14.   0, // sweep the following shape from here ...
  15.   1, // ... up through here
  16.   7, // the number of points making up the shape ...
  17.  
  18.   <3,5>, <-3,5>, <-5,0>, <-3,-5>, <3, -5>, <5,0>, <3,5>
  19.  
  20.   pigment { Green }
  21. }
  22.